home *** CD-ROM | disk | FTP | other *** search
/ PC Graphics Unleashed / PC Graphics Unleashed.iso / ch18 / install.bat < prev    next >
DOS Batch File  |  1994-10-10  |  2KB  |  51 lines

  1. @ECHO OFF
  2. REM %1=DRIVE
  3. REM -----------------------------
  4. ECHO  
  5. ECHO ╔═════════════════════════════════════════════════════╗
  6. ECHO ║                                                     ║
  7. ECHO ║ PC Graphics Unleashed                               ║
  8. ECHO ║                                                     ║
  9. ECHO ║ CD-ROM Installation Program                         ║
  10. ECHO ║                                                     ║
  11. ECHO ╚═════════════════════════════════════════════════════╝
  12. ECHO  
  13. ECHO  
  14. ECHO ─────────────────────────────────────────────────────────────
  15. ECHO   The files for Chapter 18 will be installed to your %1
  16. ECHO   hard drive. You need at least 8 megabytes of free space.
  17. ECHO.
  18. ECHO.
  19. ECHO   If this is NOT what you want to do, press the Ctrl + C 
  20. ECHO   keys to stop this batch program.
  21. ECHO ─────────────────────────────────────────────────────────────
  22. ECHO  
  23. ECHO  
  24. ECHO  
  25. PAUSE Paused... press any key to continue the installation
  26. CLS
  27. ECHO  
  28. ECHO ┌───────────────────────────────────────────────────────────────────────┐
  29. ECHO │ The software will now be installed to your %1 hard drive.             │
  30. ECHO │ You'll see a message telling you when the installation is finished.   │
  31. ECHO └───────────────────────────────────────────────────────────────────────┘
  32. IF EXIST C:\PCGU\nul GOTO COPYING
  33. MD C:\PCGU
  34. :COPYING
  35. MD C:\PCGU\CH18
  36. XCOPY \CH18\*.* %1\PCGU\CH18\ /S /E
  37. DEL %1\PCGU\CH18\INSTALL.BAT
  38. CLS
  39. ECHO 
  40. ECHO  
  41. ECHO ═════════════════════════════════════════════════════════════════
  42. ECHO.
  43. ECHO   The installation of the Chapter 18 software is complete.
  44. ECHO   You'll find the files in the %1\PCGU\CH18 directory. 
  45. ECHO.
  46. ECHO ═════════════════════════════════════════════════════════════════
  47. ECHO  
  48. ECHO  
  49. pause
  50. cls
  51.